home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / comm / zoomhint.zip / HELPME.ARJ / FD202.TXT < prev    next >
Text File  |  1993-11-14  |  4KB  |  114 lines

  1. --------------------------------------------------------------------------
  2. Setup hints for using BGFAX with FD 2.02/NC                       09-14-93
  3. B.J. Guillot
  4. FidoNet 106/400                              InterNet: st1r8@jetson.uh.edu
  5. --------------------------------------------------------------------------
  6.  
  7. Keep in mind that fax commands cannot be stored in NVRAM.
  8.  
  9. Here is the relevant information from FDSETUP ...
  10.  
  11. [FDSETUP] Modem -> Command Strings
  12.   Init-1 ... atz|
  13.   Init-2 ... at+fcr=1;+fdcc=1,5,0,2,0,0,0,0|
  14.   Init-3 ... at+flid="713 555 1212"|
  15.  
  16. Notice that everything is in LOWERCASE letters.  This is done so that FD
  17. does not mistake an initialization string as a fax connect.  (You really
  18. only need capital F's in lowercase, but I think it looks better when
  19. everything is done in lowercase.)
  20.  
  21.   +fcr=1                   enables fax receiption
  22.   +flid="713 555 1212"     sets your FAX ID, up to 20 characters
  23.  
  24.   +fdcc=1,5,0,2,0,0,0,0    enable high resolution, 14400 fax
  25.   +fdcc=1,3,0,2,0,0,0,0    enable high resolution, 9600 fax
  26.  
  27. Do not attempt to give a 9600 maximum speed send/receive fax modem the 1,5
  28. string as it will cause unpredicable results.
  29.  
  30. [FDSETUP] Modem -> Answer control
  31.   Manual answer    Yes
  32.   Force answer ... at+faa=1;a|
  33.  
  34. The "at+faa=1;a" causes the modem to answer adaptively, i.e., to
  35. automatically determine whether the incoming call is fax or data and return
  36. the response to the modem.
  37.  
  38. [FDSETUP] Mailer -> Errorlevels
  39.   1275 ... 255
  40.  
  41. ==========================================================================
  42.  
  43. If you are using a modem such as a Supra that returns a "FAX" response
  44. proceed with the following instructions ( METHOD #1 ) ...
  45.  
  46. [FDSETUP] Modem -> Messages
  47.   1275 ... F              (yes, a SINGLE UPPERCASE letter F without pipes)
  48.  
  49. [FDSETUP] Mailer -> External mail
  50.       String                                     Level
  51.    1  X<numeric alt-13>                          255
  52.  
  53. The <numeric alt-13> is a musical note symbol that is formed by holding
  54. down the <ALT> key, punching <1>, then <3> on the *numeric keypad* and then
  55. releasing the <ALT> key.
  56.  
  57. The errorlevel defined is the same as that in the Mailer -> Errorlevels.
  58.  
  59. Notice that "F" and "X" make up the first and last part of "FAX".
  60.  
  61. FDRUN.BAT should contain something similar to ...
  62.  
  63. @echo off
  64. c:
  65. cd\fd
  66. fd
  67. if errorlevel 255 bgfax /fax c:\bgfax 1 z
  68. if errorlevel 103 maint.bat
  69. if errorlevel 102 toss.bat
  70. if errorlevel 101 local.bat
  71. if errorlevel 100 dobbs.bat
  72.  
  73. ==========================================================================
  74.  
  75. If you are using a modem such as a PPI FXMT that returns a "+FCON" response
  76. proceed with the following instructions ( METHOD #2 ) ...
  77.  
  78. [FDSETUP] Modem -> Messages
  79.   1275 ... +FC              (yes, in upper case)
  80.  
  81. [FDSETUP] Mailer -> External mail
  82.       String                                     Level
  83.    1  N<numeric alt-13>                          255
  84.  
  85. The <numeric alt-13> is a musical note symbol that is formed by holding
  86. down the <ALT> key, punching <1>, then <3> on the *numeric keypad* and then
  87. releasing the <ALT> key.
  88.  
  89. The errorlevel defined is the same as that in the Mailer -> Errorlevels.
  90.  
  91. Notice that "+FC" and "N" make up the first and last part of "+FCON".
  92.  
  93. FDRUN.BAT should contain something similar to ...
  94.  
  95. @echo off
  96. c:
  97. cd\fd
  98. fd
  99. if errorlevel 255 bgfax /fcon c:\bgfax 1 z
  100. if errorlevel 103 maint.bat
  101. if errorlevel 102 toss.bat
  102. if errorlevel 101 local.bat
  103. if errorlevel 100 dobbs.bat
  104.  
  105. If BGFAX fails to work properly, try using this line instead:
  106.  
  107. if errorlevel 255 bgfax /fast c:\bgfax 1 z
  108.  
  109. ==========================================================================
  110.  
  111. Regards,
  112. B.J. Guillot
  113.  
  114.